Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | /* eslint-env browser, jquery, webextensions */ |
||
25 | $sendButton.on('click', function (evt) { |
||
26 | evt.preventDefault(); |
||
27 | |||
28 | createTaskForTicket({ |
||
29 | key: $("#key-val").text(), |
||
30 | summary: $("#summary-val").text().replace(/\s+/, ' ').replace(/^\s*(\S.+\S)\s*$/, '$1'), |
||
31 | description: $("#description-val").html() |
||
32 | }); |
||
33 | }); |
||
34 | }); |
||
35 |
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.